home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / QuickTime VR / MacOS / QuickDraw™ 3D 1.0.6F4 SDK / Development / 3DMF parser / 0.9 version / MFFILE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-24  |  910 b   |  42 lines  |  [TEXT/MPS ]

  1. #ifndef    MF3D_FILE_H
  2. #define    MF3D_FILE_H
  3. /*==============================================================================
  4.  *
  5.  *    File:        MFFILE.H
  6.  *
  7.  *    Function:    Miscellaneous metafile routines.
  8.  *
  9.  *    Author(s):    Rick Wong (RWW), Duet Development Corp.
  10.  *
  11.  *    Copyright:    (c) 1995 by Apple Computer, Inc., all rights reserved.
  12.  *
  13.  *    Change History (most recent first):
  14.  *        Fabio    Changed file name to 8 characters
  15.  *        F3F_RWW    File created.
  16.  *==============================================================================
  17.  */
  18. #if defined(__COMPILING_ON_MACINTOSH__)
  19. #pragma once
  20. #endif
  21.  
  22. #include "MFTYPES.H"
  23. #include "MFINTOBJ.H"
  24.  
  25. MF3DErr
  26. MF3D_TypeObjWrite(
  27.     MF3D_FilePtr        inMetafilePtr,
  28.     MF3DVoidObjPtr        inMF3DObjPtr);
  29.  
  30. MF3DErr
  31. MF3D_CloseReadBuffer(
  32.     MF3D_FilePtr        inMetafilePtr);
  33.  
  34. MF3DErr
  35. MF3D_BackpatchTOCLocation(
  36.     MF3D_FilePtr        inMF3DFilePtr);
  37.  
  38. MF3DErr
  39. MF3D_DisposeTOCStuff(
  40.     MF3D_FilePtr        inMetafilePtr);
  41.  
  42. #endif